home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Champak 41
/
Volume 41 - JOGO DISK .iso
/
Games
/
konka_66.swf
/
scripts
/
DefineSprite_310_gj
/
frame_1
/
DoAction.as
Wrap
Text File
|
2007-05-10
|
520b
|
29 lines
_width = 47;
_height = 51;
var cc = _xscale;
speed = 25;
this.onEnterFrame = function()
{
this.swapDepths(100000 + _Y * 100 + id % 100);
if(f == 0)
{
_xscale = cc;
_X = _X - speed;
}
else
{
_xscale = - cc;
_X = _X + speed;
}
if(_X < 0 || _X > 450)
{
this.removeMovieClip();
}
if(hit.hitTest(_parent.man.shenzi))
{
_root.nhp -= _root.diatk + 4;
_parent.man.gotoAndPlay("倒");
this.removeMovieClip();
}
};